home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / gnudev.zip / TERMCAP.H < prev   
C/C++ Source or Header  |  1990-11-29  |  514b  |  22 lines

  1. /* GNU termcap */
  2.  
  3. /* Work-alike for termcap, plus extra features.
  4.    Copyright (C) 1985, 1986 Free Software Foundation, Inc. */
  5.  
  6. /* see termcap.c for WARRANTY and LICENSE */
  7.  
  8. extern short ospeed;
  9. extern char PC;
  10.  
  11. #if defined(M_I86CM) || defined(M_I86LM)
  12. long tgetent (char *bp, char *name);
  13. #else
  14. int tgetent (char *bp, char *name);
  15. #endif
  16.  
  17. int tgetnum (char *cap);
  18. int tgetflag (char *cap);
  19. char *tgetstr (char *cap, char **area);
  20.  
  21. void tputs (char *string, int nlines, int (*outfun)(int));
  22.